home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2002 #11
/
Amiga Plus CD - 2002 - No. 11.iso
/
Tools
/
Development
/
TinyGL
/
ami
/
lang
/
cc
/
include
/
ad709
/
tinygl
/
igl.h
< prev
Wrap
C/C++ Source or Header
|
2002-08-14
|
468b
|
24 lines
#ifndef _igl_H
#define _igl_H
#include <elate/ave/ave.h>
#include <ad709/tinygl/gl.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef void* IGLContext;
IGLContext iglCreateContext();
void iglDestroyContext(IGLContext ctx);
void iglMakeCurrent(ave_win_t *drawable, IGLContext ctx);
void iglResizeContext(IGLContext ctx, int width, int height, ave_win_t *drawable);
ave_pix_t *iglGetPixmap(IGLContext ctx);
#ifdef __cplusplus
}
#endif
#endif